.video-card-wrapper {
    border-radius: 16px;
}

/* Main Card */
.video-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    border: 2px solid rgba(11, 123, 145, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16 / 9;
}

/* Thumbnail */
.video-thumbnail {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

/* Hover Zoom */
.video-card:hover .video-thumbnail {
    transform: scale(1.2);
}

/* Overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    transition: background 0.5s;
}

/* Center Content */
.video-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Play Wrapper */
.video-play-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pulse Animation */
.pulse-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #fff;
    opacity: 0.6;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.pulse-ring {
    position: absolute;
    width: 110px;
    height: 110px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulseSlow 3s linear infinite;
}

/* Play Button */
.play-button {
    position: relative;
    width: 70px;
    height: 70px;
    background: #0b7b91;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(11, 123, 145, 0.5);
    transition: transform 0.4s;
}

.video-card:hover .play-button {
    transform: scale(1.1);
}

/* Icon */
.play-icon {
    width: 28px;
    height: 28px;
    fill: #fff;
    margin-left: 3px;
}

/* Title */
.video-title {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.video-title h3 {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    font-style: italic;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes pulseSlow {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}